From 17492a9b3ce1e72853662522c2d9658b3bbfe29c Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Wed, 30 Nov 2016 17:53:59 -0600 Subject: [PATCH] Configure with REL_ALLOC=no to fix crashes Thanks to Santiago Vila for reporting the problem, and Sean Whitton for helping test the fix. Closes: 842728 --- debian/rules | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 38696d2076a..fbdd51fa4e3 100755 --- a/debian/rules +++ b/debian/rules @@ -335,7 +335,10 @@ define cfg_tree rm -rf $(1) mkdir $(1) cp -a $$(ls -A | egrep -v '^(\.git|\.pc|debian)$$') "$(1)" - cd $(1) && CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure $(confflags) $(2) + cd $(1) && \ + CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \ + REL_ALLOC=no \ + ./configure $(confflags) $(2) endef define build_cmd -- 2.30.2